home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////////////////////////////////////////////
- // File - PCI_SCAN.C
- //
- // A utility for getting a list of the PCI cards installed
- // and the resources allocated for each one of them (memory
- // ranges, IO ranges and interrupts).
- //
- ////////////////////////////////////////////////////////////////
-
- #include "../../include/windrvr.h"
- #include "../shared/pci_diag_lib.h"
- #include <stdio.h>
-
- int main (int argc, char *argv[])
- {
- PCI_Print_all_cards_info();
-
- return 0;
- }
-
-